@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}
body{
  background: #8769ac;
}
nav{
  background: #f6f0ff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 100px;



  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1;
  margin-bottom: 20px;
  border-bottom: 1px solid silver;
}
nav .logo{
  color: #b383ff;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1px;
}
nav .nav-items{
  display: flex;
  flex: 1;
  padding: 0 0 0 40px;
}


nav .nav-items li{
  list-style: none;
  padding: 0 15px;
  position: relative  ;
}
nav .nav-items li a{
  color: #471e7c;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}
nav .nav-items li a:hover{
  color: #7715fe;
}
nav form{
  display: flex;
  height: 40px;
  padding: 2px;
  background: #1e232b;
  min-width: 18%!important;
  border-radius: 2px;
  border: 1px solid rgba(155,155,155,0.2);
}
nav form .search-data{
  width: 100%;
  height: 100%;
  padding: 0 10px;
  color: #fff;
  font-size: 17px;
  border: none;
  font-weight: 500;
  background: none;
}
nav form button{
  padding: 0 15px;
  color: #fff;
  font-size: 17px;
  background: #471e7c;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}
nav form button:hover{
  background: #7715fe;
}
nav .menu-icon,
nav .cancel-icon,
nav .search-icon{
  width: 40px;
  text-align: center;
  margin: 0 50px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  display: none;
}
nav .menu-icon span,
nav .cancel-icon,
nav .search-icon{
  display: none;
}
@media (max-width: 1245px) {
  nav{
    padding: 0 50px;
  }
}
@media (max-width: 1140px){
  nav{
    padding: 0px;
  }
  nav .logo{
    flex: 2;
    text-align: center;
  }
  nav .nav-items{
    position: fixed;
    z-index: 99;
    top: 70px;
    width: 100%;
    left: -100%;
    height: 100%;
    padding: 10px 50px 0 50px;
    text-align: center;
    background: #14181f;
    display: inline-block;
    transition: left 0.3s ease;
  }
  nav .nav-items.active{
    left: 0px;
  }
  nav .nav-items li{
    line-height: 40px;
    margin: 30px 0;
  }
  nav .nav-items li a{
    font-size: 20px;
  }
  nav form{
    position: absolute;
    top: 80px;
    right: 50px;
    opacity: 0;
    pointer-events: none;
    transition: top 0.3s ease, opacity 0.1s ease;
  }
  nav form.active{
    top: 95px;
    opacity: 1;
    pointer-events: auto;
  }
  nav form:before{
    position: absolute;
    content: "";
    top: -13px;
    right: 0px;
    width: 0;
    height: 0;
    z-index: -1;
    border: 10px solid transparent;
    border-bottom-color: #1e232b;
    margin: -20px 0 0;
  }
  nav form:after{
    position: absolute;
    content: '';
    height: 60px;
    padding: 2px;
    background: #1e232b;
    border-radius: 2px;
    min-width: calc(100% + 20px);
    z-index: -2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  nav .menu-icon{
    display: block;
  }
  nav .search-icon,
  nav .menu-icon span{
    display: block;
  }
  nav .menu-icon span.hide,
  nav .search-icon.hide{
    display: none;
  }
  nav .cancel-icon.show{
    display: block;
  }
}

nav .logo.space{
  color: red;
  padding: 0 5px 0 0;
}
@media (max-width: 980px){
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon{
    margin: 0 20px;
  }
  nav form{
    right: 30px;
  }
}
@media (max-width: 350px){
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon{
    margin: 0 10px;
    font-size: 16px;
  }
}

.nav-items li:hover .dropdown-menu {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  
}

.nav-items li:hover .dropdown-menu ul {
  display: block !important;
  margin: 20px 10px ;
  padding: 0 !important;
  text-align: center;
}

.dropdown-menu ul li {
  width: 170px;
  padding: 10px ;
}

.dropdown-menu {
  display: none;
  background: #f6f0ff;
  color: #7489C6;
  border: .5px solid grey ;
  border-radius: 5px;
}


nav label{
  line-height: 85px;
  padding: 0 80px;
  font-size: 50px;
  color: #0d0d0d;
  font-family: 'Montserrat', sans-serif;
}
nav span{
  color: red;
}



/* @import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}
body{
  background: #8769ac;
}
nav{
  background: #f6f0ff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 100px;



  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1;
  margin-bottom: 20px;
  border-bottom: 1px solid silver;
}
nav .logo{
  color: #b383ff;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1px;
}
nav .nav-items{
  display: flex;
  flex: 1;
  padding: 0 0 0 40px;
}


nav .nav-items li{
  list-style: none;
  padding: 0 15px;
  position: relative  ;
}
nav .nav-items li a{
  color: #471e7c;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}
nav .nav-items li a:hover{
  color: #7715fe;
}
nav form{
  display: flex;
  height: 40px;
  padding: 2px;
  background: #1e232b;
  min-width: 18%!important;
  border-radius: 2px;
  border: 1px solid rgba(155,155,155,0.2);
}
nav form .search-data{
  width: 100%;
  height: 100%;
  padding: 0 10px;
  color: #fff;
  font-size: 17px;
  border: none;
  font-weight: 500;
  background: none;
}
nav form button{
  padding: 0 15px;
  color: #fff;
  font-size: 17px;
  background: #471e7c;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}
nav form button:hover{
  background: #7715fe;
}
nav .menu-icon,
nav .cancel-icon,
nav .search-icon{
  width: 40px;
  text-align: center;
  margin: 0 50px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  display: none;
}
nav .menu-icon span,
nav .cancel-icon,
nav .search-icon{
  display: none;
}
@media (max-width: 1245px) {
  nav{
    padding: 0 50px;
  }
}
@media (max-width: 1440px){
  nav{
    padding: 0px;
  }
  nav .logo{
    flex: 2;
    text-align: center;
  }
  nav .nav-items{
    position: fixed;
    z-index: 99;
    top: 70px;
    width: 100%;
    left: -100%;
    height: 100%;
    padding: 10px 50px 0 50px;
    text-align: center;
    background: #14181f;
    display: inline-block;
    transition: left 0.3s ease;
  }
  nav .nav-items.active{
    left: 0px;
  }
  nav .nav-items li{
    line-height: 40px;
    margin: 30px 0;
  }
  nav .nav-items li a{
    font-size: 20px;
  }
  nav form{
    position: absolute;
    top: 80px;
    right: 50px;
    opacity: 0;
    pointer-events: none;
    transition: top 0.3s ease, opacity 0.1s ease;
  }
  nav form.active{
    top: 95px;
    opacity: 1;
    pointer-events: auto;
  }
  nav form:before{
    position: absolute;
    content: "";
    top: -13px;
    right: 0px;
    width: 0;
    height: 0;
    z-index: -1;
    border: 10px solid transparent;
    border-bottom-color: #1e232b;
    margin: -20px 0 0;
  }
  nav form:after{
    position: absolute;
    content: '';
    height: 60px;
    padding: 2px;
    background: #1e232b;
    border-radius: 2px;
    min-width: calc(100% + 20px);
    z-index: -2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  nav .menu-icon{
    display: block;
  }
  nav .search-icon,
  nav .menu-icon span{
    display: block;
  }
  nav .menu-icon span.hide,
  nav .search-icon.hide{
    display: none;
  }
  nav .cancel-icon.show{
    display: block;
  }
} */
.content{
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}
.content header{
  font-size: 30px;
  font-weight: 700;
}
.content .text{
  font-size: 30px;
  font-weight: 700;
}
.space{
  margin: 10px 0;
}
/* nav .logo.space{
  color: red;
  padding: 0 5px 0 0;
}
@media (max-width: 980px){
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon{
    margin: 0 20px;
  }
  nav form{
    right: 30px;
  }
}
@media (max-width: 350px){
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon{
    margin: 0 10px;
    font-size: 16px;
  }
} */
.content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.content header{
  font-size: 30px;
  font-weight: 700;
}
.content .text{
  font-size: 30px;
  font-weight: 700;
}
.content .space{
  margin: 10px 0;
}

/* .nav-items li:hover .dropdown-menu {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  
}



.nav-items li:hover .dropdown-menu ul {
  display: block !important;
  margin: 20px 10px ;
  padding: 0 !important;
  text-align: center;
} */


/* 320px and below */
/* @media (max-width: 320px) {
  .nav-items li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 1px;
    top: 100%;
    
  }
} */

/* 321px to 375px */
/* @media (min-width: 321px) and (max-width: 375px) {
.nav-items li:hover .dropdown-menu {
  display: block;
  position: absolute;
  left: 1px;
  top: 100%;
  
}
} */

/* 376px to 425px */
/* @media (min-width: 376px) and (max-width: 425px) {
.nav-items li:hover .dropdown-menu {
  display: block;
  position: absolute;
  left: 1px;
  top: 100%;
  
}
} */

/* 426px to 768px */
/* @media (min-width: 426px) and (max-width: 768px) {
.nav-items li:hover .dropdown-menu {
  display: block;
  position: absolute;
  left: 165px;
  top: 100%;
  
}
} */

/* 769px to 1024px */
/* @media (min-width: 769px) and (max-width: 1024px) {
.nav-items li:hover .dropdown-menu {
  display: block;
  position: absolute;
  left: 358px;
  top: 100%;
  
}
} */

/* 1025px to 1440px */
/* @media (min-width: 1025px) and (max-width: 1440px) {
.nav-items li:hover .dropdown-menu {
  display: block;
  position: absolute;
  left: 568px;
  top: 100%;
  
}
}


.dropdown-menu ul li {
  width: 170px;
  padding: 10px ;
}

.dropdown-menu {
  display: none;
  background: #f6f0ff;
  color: #7489C6;
  border: .5px solid grey ;
  border-radius: 5px;
}


nav label{
  line-height: 85px;
  padding: 0 80px;
  font-size: 50px;
  color: #0d0d0d;
  font-family: 'Montserrat', sans-serif;
}
nav span{
  color: #471e7c;
} */
.scroll-line{
  height: 2px;
  background: #471e7c;
  margin-bottom: -3px;
  width: 0%;
}





.scroll {
    height: 65px;
    width: 40px;
    border: 2px solid black;
    position: absolute;
    left: 50%;
    bottom: 150px;
    border-radius: 50px;
    cursor: pointer;
  }
  
  .scroll::before ,
  .scroll::after {
  
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    height: 10px;
    width: 10px;
    transform: translate(-50%, -100%) rotate(45deg);
    border: 2px solid black;
    border-top: transparent;
    border-left: transparent;
    animation: scroll-down 1s ease-in-out infinite;
  
  }
  
  .scroll::before {
    top: 30%;
    animation-delay: 0.3s;
    /* animation: scroll-down 1s ease-in-out infinite; */
  }
  
  @keyframes scroll-down {
    0% {
      /* top:20%; */
      opacity: 0;
    }
    30% {
      opacity: 1;
    }
    60% {
      opacity: 1;
    }
    100% {
      top: 90%;
      opacity: 0;
    }
  }
   




  .rf0 {
    margin: 0 auto;
    text-align: center;
    color: #f6f0ff;
    width: 100%;
    height: 100vh;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
  }

  .rf0 h1 {
    font-size: 90px;
  }
  .rf0 p {
    font-size: 20px;
    max-width: 675px;
    margin: 0 auto;
  }


  .met {
    margin: 89px auto;
    text-align: center;
    color: #f6f0ff;
    width: 65% !important;
    height: 100vh;
  
    
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  
  .met1 {
  padding-top: 10%;
  }
  
  
  .met h1 {
    font-size: 50px; 
    margin: 0 auto;
  }
  
  .met h5 {
    margin: 0 auto;
  }
  

  
  .rf3 {
    padding: 40px 20px;
    width: 65%;
    margin: 0 auto;
  }
  
  
  .get {
    padding: 60px 20px ;
  }
  
  .get button {
    padding: 13px 29px;
    background-color: #471e7c;
    color:#f6f0ff;
    border: none;
    border-radius: 40px;
    transition: .8s ease-in-out;
  }
  
  .get button:hover {
    background-color: #7489C6;
    scale: 1.2;
  }
  
  .get p {
    font-size: 20px;
    max-width: 675px;
    margin: 0 auto;
  }
  
  .get button a {
    text-decoration: none;
    color: #f6f0ff;
  }

  .wrapper{
    position: relative;
    height: 330px;
    width: 620px;
    perspective: 1000px;
    margin: 0 auto;
    margin-top: 50px;
    padding: 10px 30px;
  }
  .wrapper .flip-card{
    position: relative;
    height: 100%;
    width: 100%;
    background: #D48600;
    transform-style: preserve-3d;
    transition: all 3s ease-in-out;
  }
  .wrapper:hover .flip-card{
    transform: rotateY(180deg);
  }
  .flip-card .card{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: #471e7c;
    border-top: 2px solid #cc6600;
    border-left: 2px solid #cc6600;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    backface-visibility: hidden;
    position: absolute;
    margin: 0 auto;
    padding: 10px 30px;
    color: #f6f0ff;
  }
  .card span.circle,
  .card span.square{
    height: 110px;
    width: 110px;
    border: 10px solid #4d2600;
  }
  .card span.circle{
    border-radius: 50%;
  }
  .card span.triangle{
    position: relative;
    height: 0;
    width: 0;
    border-right: 60px solid transparent;
    border-left: 60px solid transparent;
    border-bottom: 110px solid #4d2600;
    margin-right: 16px;
  }
  .card span.triangle::before{
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    left: -40px;
    top: 20px;
    border-right: 40px solid transparent;
    border-left: 40px solid transparent;
    border-bottom: 80px solid #D48600;
  }
  .back.card{
    transform: rotateY(180deg);
  }
  .back.card .home-logo{
    position: relative;
    height: 65px;
    width: 65px;
    border: 5px solid #4d2600;
    border-radius: 50%;
    margin-right: 16px;
  }
  .home-logo .icon{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(6px);
    display: inline-block;
    height: 15px;
    width: 25px;
    background: #4d2600;
  }
  .home-logo .icon::before{
    content: "";
    position: absolute;
    top: -15px;
    height: 25px;
    width: 25px;
    background: #4d2600;
    transform: rotate(45deg);
  }
  .back.card .num{
    font-size: 25px;
    font-weight: 600;
    color: #4d2600;
  }
  
  

  

















.bu {
    margin-bottom: 50px;
    padding: 50px 10px;
}

 .rm1 {
    margin: 0 auto;
    padding: 150px 20px;
    justify-content: space-between ;
    align-items: center;
    width: 85%;
}




 







.rm0 {
  margin: 0 auto;
  width: 65%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f6f0ff;
  font-weight: 500;
  margin-top: 200px;
}

.rm0 h1{
   font-size: 4.4rem;
   margin-bottom:40px;
   font-weight: 700;
}

@media only screen and (max-width: 320px) {
  .rm0 h1 {
    font-size: 35px;
    position: relative;
    left: -22px;
  }
}

@media only screen and (max-width: 375px) {
  .rm0 h1 {
    font-size: 35px;
    position: relative;
    left: -8px;
  }
}

@media only screen and (max-width: 425px) {
  .rm0 h1 {
    font-size: 35px;
    position: relative;
    left: -6px;
  }
}


.rm0 p{
   font-size: 1.2rem;
   margin-top: 15px;
   font-weight: 600;
}


.wrapper2 {
  max-width: 1100px;
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.wrapper2 i {
  top: 50%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0,0,0,0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}
.wrapper2 i:active{
  transform: translateY(-50%) scale(0.85);
}
.wrapper2 i:first-child{
  left: -22px;
}
.wrapper2 i:last-child{
  right: -22px;
}
.wrapper2 .carousel{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((120% / 2) - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel.no-transition {
  scroll-behavior: auto;
}
.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.carousel.dragging .card {
  cursor: grab;
  user-select: none;
}
.carousel :where(.card, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel .card {
  scroll-snap-align: start;
  min-height: 342px;
  list-style: none;
  background: #fff;
  cursor: pointer;
  padding: 15px;
  flex-direction: column;
  border-radius: 8px;
  background: #471e7c;
  color: #f6f0ff;
  font-weight: 600;
  text-align: left !important;
}

.card h3 {
  text-align: left !important;
  font-size: 2.3rem;
  bottom: 20px !important;
}

.card li {
  margin-top: 8px !important;
}
.jj {
  text-align: left !important;
}

.jj h3 {
  padding-left: 25px;
  padding-bottom: 15px;
}




.carousel .card .img {
  background: #8B53FF;
  height: 148px;
  width: 148px;
  border-radius: 50%;
}
.card .img img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
}
.carousel .card h2 {
  font-weight: 500;
  font-size: 1.56rem;
  margin: 30px 0 5px;
}
.carousel .card span {
  color: #6A6D78;
  font-size: 1.31rem;
}
@media screen and (max-width: 900px) {
  .wrapper2 .carousel {
    grid-auto-columns: calc((100% / 2) - 9px);
  }
}
@media screen and (max-width: 600px) {
  .wrapper2 .carousel {
    grid-auto-columns: 100%;
  }
}
























#app {
  width: 100% !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}


.cen3 {
margin: 0 auto;
color: #f6f0ff;
margin-top: 280px;

}


.cen3 h1 {
  margin-bottom: 16px;
}

.nop label {
  color: #f6f0ff;
  margin-top: 10px;
}

.cen3 h6 a {
  font-size: 1.2rem;
  text-decoration: none;
  color: #7489C6;
}

.up {
  margin-top: 15px;
}

.container {
  position: relative;
  
  width: 100%;
  background : #471e7c;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.container header {
  font-size: 1.5rem;
  color: #f6f0ff ;
  font-weight: 500;
  text-align: center;
}
.container .form {
  margin-top: 30px;
}
.form .input-box {
  width: 100%;
  margin-top: 20px;
}
.input-box label {
  color: #f6f0ff;
}
.form :where(.input-box input, .select-box) {
  position: relative;
  height: 50px;
  width: 100%;
  outline: none;
  font-size: 1rem;
  color: #707070;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0px;
}
.input-box input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.form .column {
  display: flex;
  column-gap: 15px;
}
.form .gender-box {
  margin-top: 20px;
}
.gender-box h3 {
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.form :where(.gender-option, .gender) {
  display: flex;
  align-items: center;
  column-gap: 50px;
  flex-wrap: wrap;
}
.form .gender {
  column-gap: 5px;
}
.gender input {
  accent-color: rgb(130, 106, 251);
}
.form :where(.gender input, .gender label) {
  cursor: pointer;
}
.gender label {
  color: #707070;
}
.address :where(input, .select-box) {
  margin-top: 15px;
}
.select-box select {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  color: #707070;
  font-size: 1rem;
}
.form button {
  height: 55px;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background: rgb(130, 106, 251);
}
.form button:hover {
  background: rgb(88, 56, 250);
}
/*Responsive*/
@media screen and (max-width: 500px) {
  .form .column {
    flex-wrap: wrap;
  }
  .form :where(.gender-option, .gender) {
    row-gap: 15px;
  }
}

.form ul {
  font-size: 10px;
  display: flex;
  flex-direction: row;
}

.cho {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

.cho p { 
  margin-bottom: 0 !important;
  margin-left: 5px;
}


@media (max-width: 1440px) {
  .r2 {
    width: 100%;
   
  }
  .sticky_links {
    position: absolute;
  }
}


@media screen  and (max-width: 770px) {
  .cen2 h1 {
    min-width: 90% !important;
  }

  .r2 {
    width: 100% !important;
    padding: 10px 20px;
  }
}



































































































  .footer {
    background: #10182F;
    border-radius: 6px;
  }
  .footer .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3.5rem;
    padding: 60px;
  }
  .footer-row .footer-col h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
  }
  .footer-col .links {
    margin-top: 20px;
    padding-left: 0 !important;
  }
  .footer-col .links li {
    list-style: none;
    margin-bottom: 10px;
  }
  .footer-col .links li a {
    text-decoration: none;
    color: #bfbfbf;
  }
  .footer-col .links li a:hover {
    color: #fff;
  }
  .footer-col p {
    margin: 20px 0;
    color: #bfbfbf;
    max-width: 300px;
  }
  .footer-col form {
    display: flex;
    gap: 5px;
  }
  .footer-col input {
    height: 40px;
    border-radius: 6px;
    background: none;
    width: 100%;
    outline: none;
    border: 1px solid #7489C6 ;
    caret-color: #fff;
    color: #fff;
    padding-left: 10px;
  }
  .footer-col input::placeholder {
    color: #ccc;
  }
   .footer-col form button {
    background: #fff;
    outline: none;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s ease;
  }
  .footer-col form button:hover {
    background: #cecccc;
  }
  .footer-col .icons {
    display: flex;
    margin-top: 30px;
    gap: 30px;
    cursor: pointer;
  }
  .footer-col .icons i {
    color: #afb6c7;
  }
  .footer-col .icons i:hover  {
    color: #fff;
  }
  @media (max-width: 768px) {
    .footer {
      position: relative;
      bottom: 0;
      left: 0;
      transform: none;
      width: 100%;
      border-radius: 0;
    }
    .footer .footer-row {
      padding: 20px;
      gap: 1rem;
    }
    .footer-col form {
      display: block;
    }
    .footer-col form :where(input, button) {
      width: 100%;
    }
  }


  .footer-col .links {
    margin-top: 20px;
    padding-left: 0 !important;
  }